From 329f7af1597cefa922d731a89b470b6fe9a18145 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 20 Mar 2013 23:54:49 -0400 Subject: [PATCH] Fix DND The removal of the Motif DND code accidentally changed the value of the TARGET_DELETE enumeration value, breaking DND pretty badly. --- gtk/gtkdnd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index 2431f98256..83655f0b43 100644 --- a/gtk/gtkdnd.c +++ b/gtk/gtkdnd.c @@ -185,7 +185,7 @@ typedef gboolean (* GtkDragDestCallback) (GtkWidget *widget, /* Enumeration for some targets we handle internally */ enum { - TARGET_DELETE + TARGET_DELETE = 0x40000002 }; /* Forward declarations */ -- 2.30.2